In [1]:
    
%pdb
def pick_and_take():
    picked = numpy.random.randint(0, 1000)
    raise NotImplementedError()
    
pick_and_take()
    
    
    
    
In [3]:
    
x = range(1000)
y = [i ** 2 for i in x]
plt.plot(x,y)
plt.show();
    
    
In [4]:
    
%config InlineBackend.figure_format = 'retina'
plt.plot(x,y)
plt.show();
    
    
In [ ]: